home *** CD-ROM | disk | FTP | other *** search
/ Aminet 49 / Aminet 49 (2002)(GTI - Schatztruhe)[!][Jun 2002].iso / Aminet / util / libs / muitoolkit-src.lha / muitoolkit-2.1_src / include / libraries / muitoolkitbase.h < prev   
Encoding:
C/C++ Source or Header  |  2001-09-16  |  728 b   |  30 lines

  1. /*
  2. ** $Id: muitoolkitbase.h,v 1.3 2001/01/14 10:46:31 carlos Exp $.
  3. **
  4. ** definition of MuiToolkitBase
  5. **
  6. ** (C) Copyright 1999-2001 Marcin Orlowski <carlos@amiga.com.pl>
  7. ** All Rights Reserved.
  8. */
  9.  
  10. #ifndef MUITOOLKIT_MUITOOLKITBASE_H
  11. #define MUITOOLKIT_MUITOOLKITBASE_H
  12.  
  13. #ifndef  EXEC_LIBRARIES
  14. #include <exec/libraries.h>
  15. #endif /* EXEC_LIBRARIES_H */
  16.  
  17. struct MuiToolkitBase
  18. {
  19.  struct Library         mt_LibNode;
  20.  struct SegList        *mt_SegList;
  21.  struct ExecBase       *mt_SysBase;
  22.  struct IntuitionBase  *mt_IntuitionBase;
  23.  struct GfxBase        *mt_GfxBase;
  24.  struct UtilityBase    *mt_UtilityBase;
  25.  struct Library        *mt_MUIMasterBase;
  26.  struct DosLibrary     *mt_DOSBase;
  27. };
  28.  
  29. #endif /* MUITOOLKIT_MUITOOLKITBASE_H */
  30.